Credential

data class Credential(credentialId: String, isResidentCredential: Boolean, rpId: String?, privateKey: String, userHandle: String?, signCount: Int, largeBlob: String?)

Constructors

Credential
Link copied to clipboard
fun Credential(credentialId: String, isResidentCredential: Boolean, rpId: String? = null, privateKey: String, userHandle: String? = null, signCount: Int, largeBlob: String? = null)

Properties

credentialId
Link copied to clipboard
val credentialId: String
isResidentCredential
Link copied to clipboard
val isResidentCredential: Boolean
largeBlob
Link copied to clipboard
val largeBlob: String? = null
The large blob associated with the credential.
privateKey
Link copied to clipboard
val privateKey: String
The ECDSA P-256 private key in PKCS#8 format.
rpId
Link copied to clipboard
val rpId: String? = null
Relying Party ID the credential is scoped to.
signCount
Link copied to clipboard
val signCount: Int
Signature counter.
userHandle
Link copied to clipboard
val userHandle: String? = null
An opaque byte sequence with a maximum size of 64 bytes mapping the credential to a specific user.

Sources

jvm source
Link copied to clipboard